home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / aclocal-1.5 < prev    next >
Text File  |  2005-10-16  |  13KB  |  477 lines

  1. #!/usr/bin/perl
  2. # -*- perl -*-
  3. # Generated automatically from aclocal.in by configure.
  4.  
  5. # aclocal - create aclocal.m4 by scanning configure.ac
  6. # Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
  7.  
  8. # This program is free software; you can redistribute it and/or modify
  9. # it under the terms of the GNU General Public License as published by
  10. # the Free Software Foundation; either version 2, or (at your option)
  11. # any later version.
  12.  
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. # GNU General Public License for more details.
  17.  
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  21. # 02111-1307, USA.
  22.  
  23. # Written by Tom Tromey <tromey@cygnus.com>.
  24.  
  25. eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  26.     if 0;
  27.  
  28. # aclocal - scan configure.ac and generate aclocal.m4.
  29.  
  30. # Some constants.
  31. $VERSION = "1.5";
  32. $PACKAGE = "automake";
  33. $prefix = "/usr";
  34. # Note that this isn't pkgdatadir, but a separate directory.
  35. $acdir = "/usr/share/aclocal-1.5";
  36.  
  37. # Some globals.
  38.  
  39. # Exit status.
  40. $exit_status = 0;
  41.  
  42. # Name of the top autoconf input: `configure.ac' or `configure.in'.
  43. $configure_ac = '';
  44.  
  45. # Text to output.
  46. $output = '';
  47.  
  48. # Output file name.
  49. $output_file = 'aclocal.m4';
  50.  
  51. # Which macros have been seen.
  52. %macro_seen = ();
  53.  
  54. # Which files have been seen.
  55. %file_seen = ();
  56.  
  57. # Map macro names to file names.
  58. %map = ();
  59.  
  60. # Map file names to file contents.
  61. %file_contents = ();
  62.  
  63. # How much to say.
  64. $verbose = 0;
  65.  
  66. # Map from obsolete macros to hints for new macros.
  67. # If you change this, change the corresponding list in automake.in.
  68. # FIXME: should just put this into a single file.
  69. my %obsolete_macros =
  70.     (
  71.      'AC_FEATURE_CTYPE'        => "use `AC_HEADER_STDC'",
  72.      'AC_FEATURE_ERRNO'        => "add `strerror' to `AC_REPLACE_FUNCS(...)'",
  73.      'AC_FEATURE_EXIT'        => '',
  74.      'AC_SYSTEM_HEADER'        => '',
  75.  
  76.      # Note that we do not handle this one, because it is still run
  77.      # from AM_CONFIG_HEADER.  So we deal with it specially in
  78.      # &scan_autoconf_files.
  79.      # 'AC_CONFIG_HEADER'    => "use `AM_CONFIG_HEADER'",
  80.  
  81.      'fp_C_PROTOTYPES'        => "use `AM_C_PROTOTYPES'",
  82.      'fp_PROG_CC_STDC'        => "use `AM_PROG_CC_STDC'",
  83.      'fp_PROG_INSTALL'        => "use `AC_PROG_INSTALL'",
  84.      'fp_WITH_DMALLOC'        => "use `AM_WITH_DMALLOC'",
  85.      'fp_WITH_REGEX'        => "use `AM_WITH_REGEX'",
  86.      'gm_PROG_LIBTOOL'        => "use `AM_PROG_LIBTOOL'",
  87.      'jm_MAINTAINER_MODE'    => "use `AM_MAINTAINER_MODE'",
  88.      'md_TYPE_PTRDIFF_T'    => "use `AM_TYPE_PTRDIFF_T'",
  89.      'ud_PATH_LISPDIR'        => "use `AM_PATH_LISPDIR'",
  90.      'ud_GNU_GETTEXT'        => "use `AM_GNU_GETTEXT'",
  91.  
  92.      # Now part of autoconf proper, under a different name.
  93.      'AM_FUNC_FNMATCH'        => "use `AC_FUNC_FNMATCH'",
  94.      'fp_FUNC_FNMATCH'        => "use `AC_FUNC_FNMATCH'",
  95.      'AM_SANITY_CHECK_CC'    => "automatically done by `AC_PROG_CC'",
  96.      'AM_PROG_INSTALL'        => "use `AC_PROG_INSTALL'",
  97.      'AM_EXEEXT'        => "use `AC_EXEEXT'",
  98.      'AM_CYGWIN32'        => "use `AC_CYGWIN'",
  99.      'AM_MINGW32'        => "use `AC_MINGW32'",
  100.      'AM_FUNC_MKTIME'        => "use `AC_FUNC_MKTIME'",
  101.  
  102. # These aren't quite obsolete.
  103. #      'md_PATH_PROG',
  104.      );
  105.  
  106. # Regexp to match the above macros.
  107. $obsolete_rx = '\b(' . join ('|', keys %obsolete_macros) . ')\b';
  108.  
  109. # Matches a macro definition.
  110. $ac_defun_rx = "AC_DEFUN\\(\\[?([^],)\n]+)\\]?";
  111.  
  112. # Matches an AC_REQUIRE line.
  113. $ac_require_rx = "AC_REQUIRE\\(\\[?([^])]*)\\]?\\)";
  114.  
  115.  
  116.  
  117. local (@dirlist) = &parse_arguments (@ARGV);
  118. push (@dirlist, "/usr/share/aclocal") if (!grep(/^--acdir/, @ARGV));
  119. &scan_m4_files (@dirlist);
  120. &scan_configure;
  121. if (! $exit_status)
  122. {
  123.     &write_aclocal;
  124. }
  125. &check_acinclude;
  126.  
  127. exit $exit_status;
  128.  
  129. ################################################################
  130.  
  131. # Print usage and exit.
  132. sub usage
  133. {
  134.     local ($status) = @_;
  135.  
  136.     print "Usage: aclocal [OPTIONS] ...\n\n";
  137.     print "\
  138. Generate `aclocal.m4' by scanning `configure.ac' or `configure.in'
  139.  
  140.   --acdir=DIR           directory holding config files
  141.   --help                print this help, then exit
  142.   -I DIR                add directory to search list for .m4 files
  143.   --output=FILE         put output in FILE (default aclocal.m4)
  144.   --print-ac-dir        print name of directory holding m4 files
  145.   --verbose             don't be silent
  146.   --version             print version number, then exit
  147.  
  148. Report bugs to <bug-automake\@gnu.org>.\n";
  149.  
  150.     exit $status;
  151. }
  152.  
  153. # Parse command line.
  154. sub parse_arguments
  155. {
  156.     local (@arglist) = @_;
  157.     local (@dirlist);
  158.     local ($print_and_exit) = 0;
  159.  
  160.     while (@arglist)
  161.     {
  162.     if ($arglist[0] =~ /^--acdir=(.+)$/)
  163.     {
  164.         $acdir = $1;
  165.     }
  166.     elsif ($arglist[0] =~/^--output=(.+)$/)
  167.     {
  168.         $output_file = $1;
  169.     }
  170.     elsif ($arglist[0] eq '-I')
  171.     {
  172.         shift (@arglist);
  173.         push (@dirlist, $arglist[0]);
  174.     }
  175.     elsif ($arglist[0] eq '--print-ac-dir')
  176.     {
  177.         $print_and_exit = 1;
  178.     }
  179.     elsif ($arglist[0] eq '--verbose')
  180.     {
  181.         ++$verbose;
  182.     }
  183.     elsif ($arglist[0] eq '--version')
  184.     {
  185.         print "aclocal (GNU $PACKAGE) $VERSION\n\n";
  186.         print "Copyright 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.\n";
  187.         print "This is free software; see the source for copying conditions.  There is NO\n";
  188.         print "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n";
  189.         print "Written by Tom Tromey <tromey\@cygnus.com>\n";
  190.         exit 0;
  191.     }
  192.     elsif ($arglist[0] eq '--help')
  193.     {
  194.         &usage (0);
  195.     }
  196.     else
  197.     {
  198.         die "aclocal: unrecognized option -- `$arglist[0]'\nTry `aclocal --help' for more information.\n";
  199.     }
  200.  
  201.     shift (@arglist);
  202.     }
  203.  
  204.     if ($print_and_exit)
  205.     {
  206.     print "/usr/share/aclocal", "\n";
  207.     exit 0;
  208.     }
  209.  
  210.     # Search our install directory last.
  211.     push (@dirlist, $acdir);
  212.  
  213.     return @dirlist;
  214. }
  215.  
  216. ################################################################
  217.  
  218. sub scan_configure
  219. {
  220.     warn "aclocal: both `configure.ac' and `configure.in' present:"
  221.          . " ignoring `configure.in'\n"
  222.         if -f 'configure.ac' && -f 'configure.in';
  223.     $configure_ac = 'configure.in'
  224.         if -f 'configure.in';
  225.     $configure_ac = 'configure.ac'
  226.         if -f 'configure.ac';
  227.     die "aclocal: `configure.ac' or `configure.in' is required\n"
  228.         if !$configure_ac;
  229.  
  230.     open (CONFIGURE, $configure_ac)
  231.     || die "aclocal: couldn't open `$configure_ac': $!\n";
  232.  
  233.     # Make sure we include acinclude.m4 if it exists.
  234.     if (-f 'acinclude.m4')
  235.     {
  236.     &add_file ('acinclude.m4');
  237.     }
  238.  
  239.     while (<CONFIGURE>)
  240.     {
  241.     # Remove comments from current line.
  242.     s/\bdnl\b.*$//;
  243.     s/\#.*$//;
  244.  
  245.     if (/$obsolete_rx/o)
  246.     {
  247.         local ($hint) = '';
  248.         if ($obsolete_macros{$1} ne '')
  249.         {
  250.         $hint = '; ' . $obsolete_macros{$1};
  251.         }
  252.         warn "aclocal: $configure_ac: $.: `$1' is obsolete$hint\n";
  253.         $exit_status = 1;
  254.         next;
  255.     }
  256.  
  257.     # Search for things we know about.  The "search" sub is
  258.     # constructed dynamically by scan_m4_files.  The last
  259.     # parenthethical match makes sure we don't match things that
  260.     # look like macro assignments or AC_SUBSTs.
  261.     if (! &search && /(^|\s+)(AM_[A-Z0-9_]+)($|[^\]\)=A-Z0-9_])/)
  262.     {
  263.         # Macro not found, but AM_ prefix found.
  264.         warn "aclocal: $configure_ac: $.: macro `$2' not found in library\n";
  265.         $exit_status = 1;
  266.     }
  267.     }
  268.  
  269.     close (CONFIGURE);
  270. }
  271.  
  272. ################################################################
  273.  
  274. # Check macros in acinclude.m4.  If one is not used, warn.
  275. sub check_acinclude
  276. {
  277.     local ($key);
  278.  
  279.     foreach $key (keys %map)
  280.     {
  281.     next unless $map{$key} eq 'acinclude.m4';
  282.     if (! $macro_seen{$key})
  283.     {
  284.         # FIXME: should print line number of acinclude.m4.
  285.         warn "aclocal: macro `$key' defined in acinclude.m4 but never used\n";
  286.     }
  287.     }
  288. }
  289.  
  290. ################################################################
  291.  
  292. # Scan all the installed m4 files and construct a map.
  293. sub scan_m4_files
  294. {
  295.     local (@dirlist) = @_;
  296.  
  297.     # First, scan acinclude.m4 if it exists.
  298.     if (-f 'acinclude.m4')
  299.     {
  300.     $file_contents{'acinclude.m4'} = &scan_file ('acinclude.m4');
  301.     }
  302.  
  303.     local ($m4dir);
  304.     foreach $m4dir (@dirlist)
  305.     {
  306.     opendir (DIR, $m4dir)
  307.         || die "aclocal: couldn't open directory `$m4dir': $!\n";
  308.     local ($file, $fullfile);
  309.     foreach $file (sort grep (! /^\./, readdir (DIR)))
  310.     {
  311.         # Only examine .m4 files.
  312.         next unless $file =~ /\.m4$/;
  313.  
  314.         # Skip some files when running out of srcdir.
  315.         next if $file eq 'aclocal.m4';
  316.  
  317.         $fullfile = $m4dir . '/' . $file;
  318.         $file_contents{$fullfile} = &scan_file ($fullfile);
  319.     }
  320.     closedir (DIR);
  321.     }
  322.  
  323.     # Construct a new function that does the searching.  We use a
  324.     # function (instead of just evalling $search in the loop) so that
  325.     # "die" is correctly and easily propagated if run.
  326.     my $search = "sub search {\nmy \$found = 0;\n";
  327.     foreach my $key (reverse sort keys %map)
  328.     {
  329.     # EXPR is a regexp matching the name of the macro.
  330.     (my $expr = $key) =~ s/(\W)/\\$1/g;
  331.     $search .= ('if (/\b' . $key . '\b/) { & add_macro (' . $key
  332.             . '); $found = 1; }' . "\n");
  333.     }
  334.     $search .= "return \$found;\n};\n";
  335.     eval $search;
  336.     die "internal error: $@\n search is $search" if $@;
  337. }
  338.  
  339. ################################################################
  340.  
  341. # Add a macro to the output.
  342. sub add_macro
  343. {
  344.     local ($macro) = @_;
  345.  
  346.     # We want to ignore AC_ macros.  However, if an AC_ macro is
  347.     # defined in (eg) acinclude.m4, then we want to make sure we mark
  348.     # it as seen.
  349.     return if $macro =~ /^AC_/ && ! defined $map{$macro};
  350.  
  351.     if (! defined $map{$macro})
  352.     {
  353.     warn "aclocal: macro `$macro' required but not defined\n";
  354.     $exit_status = 1;
  355.     return;
  356.     }
  357.  
  358.     print STDERR "aclocal: saw macro $macro\n" if $verbose;
  359.     $macro_seen{$macro} = 1;
  360.     &add_file ($map{$macro});
  361. }
  362.  
  363. # Add a file to output.
  364. sub add_file
  365. {
  366.     local ($file) = @_;
  367.  
  368.     # Only add a file once.
  369.     return if ($file_seen{$file});
  370.     $file_seen{$file} = 1;
  371.  
  372.     $output .= $file_contents{$file} . "\n";
  373.     local ($a, @rlist);
  374.     foreach (split ("\n", $file_contents{$file}))
  375.     {
  376.     # This is a hack for Perl 4.
  377.     $a = $_;
  378.     if ($a =~ /$ac_require_rx/g)
  379.     {
  380.         push (@rlist, $1);
  381.     }
  382.  
  383.     # Remove comments from current line.
  384.     s/\bdnl\b.*$//;
  385.     s/\#.*$//;
  386.  
  387.     # The search function is constructed dynamically by
  388.     # scan_m4_files.  The last parenthethical match makes sure we
  389.     # don't match things that look like macro assignments or
  390.     # AC_SUBSTs.
  391.     if (! &search && /(^|\s+)(AM_[A-Z0-9_]+)($|[^\]\)=A-Z0-9_])/)
  392.     {
  393.         # Macro not found, but AM_ prefix found.
  394.         warn "aclocal: $configure_ac: $.: macro `$2' not found in library\n";
  395.         $exit_status = 1;
  396.     }
  397.     }
  398.  
  399.     local ($macro);
  400.     foreach $macro (@rlist)
  401.     {
  402.     &add_macro ($macro);
  403.     }
  404. }
  405.  
  406. # Scan a single M4 file.  Return contents.
  407. sub scan_file
  408. {
  409.     local ($file) = @_;
  410.  
  411.     open (FILE, $file)
  412.     || die "aclocal: couldn't open `$file': $!\n";
  413.     local ($contents) = '';
  414.     while (<FILE>)
  415.     {
  416.     # Ignore `##' lines.
  417.     next if /^##/;
  418.  
  419.     $contents .= $_;
  420.  
  421.     if (/$ac_defun_rx/)
  422.     {
  423.         if (! defined $map{$1})
  424.         {
  425.         $map{$1} = $file;
  426.         }
  427.  
  428.         # Note: we used to give an error here if we saw a
  429.         # duplicated macro.  However, this turns out to be
  430.         # extremely unpopular.  It causes actual problems which
  431.         # are hard to work around, especially when you must
  432.         # mix-and-match tool versions.
  433.  
  434.         print STDERR "aclocal: found macro $1 in $file: $.\n" if $verbose;
  435.     }
  436.     }
  437.     close (FILE);
  438.  
  439.     return $contents;
  440. }
  441.  
  442. ################################################################
  443.  
  444. # Write output.
  445. sub write_aclocal
  446. {
  447.     return if ! length ($output);
  448.  
  449.     print STDERR "aclocal: writing $output_file\n" if $verbose;
  450.  
  451.     open (ACLOCAL, "> " . $output_file)
  452.     || die "aclocal: couldn't open `$output_file' for writing: $!\n";
  453.  
  454.     # In case we're running under MSWindows, don't write with CRLF.
  455.     # (This circumvents a bug in at least Cygwin bash where the shell
  456.     # parsing fails on lines ending with the continuation character '\'
  457.     # and CRLF.)
  458.     binmode ACLOCAL;
  459.  
  460.     print ACLOCAL "# $output_file generated automatically by aclocal $VERSION\n";
  461.     print ACLOCAL "\
  462. # Copyright 1996, 1997, 1998, 1999, 2000, 2001
  463. # Free Software Foundation, Inc.
  464. # This file is free software; the Free Software Foundation
  465. # gives unlimited permission to copy and/or distribute it,
  466. # with or without modifications, as long as this notice is preserved.
  467.  
  468. # This program is distributed in the hope that it will be useful,
  469. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  470. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  471. # PARTICULAR PURPOSE.
  472.  
  473. ";
  474.     print ACLOCAL $output;
  475.     close (ACLOCAL);
  476. }
  477.